home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'',
- 'Copyright': u'',
- 'Description': u'',
- 'Host': u'Paint Shop Pro X',
- 'Host Version': u'10.00 Alpha 20050620.13'
- }
-
- def Preset_RadialBlur():
- return {
- 'RadialBlurType': App.Constants.RadialBlurType.Spin,
- 'Strength': 10,
- 'TwirlDegrees': 0,
- 'CenterX': 0,
- 'CenterY': 0,
- 'Aperture': 0,
- 'Aspect': 1
- }
-
- def Do(Environment):
- # RadialBlur_LOCALIZED
- App.Do( Environment, 'RadialBlur', Preset_RadialBlur())
-
-